home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / MacZoop 1.1 / More Classes / ZPictWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-01  |  702 b   |  48 lines  |  [TEXT/CWIE]

  1. /*************************************************************************************************
  2. *
  3. *
  4. *            ObjectMacZapp        -- a standard Mac OOP application template
  5. *
  6. *
  7. *
  8. *            ZPictWindow.h        -- a window that displays PICT files
  9. *
  10. *
  11. *
  12. *
  13. *
  14. *            © 1996, Graham Cox
  15. *
  16. *
  17. *
  18. *
  19. *************************************************************************************************/
  20.  
  21.  
  22. #pragma once
  23.  
  24. #ifndef __ZPICTWINDOW__
  25. #define __ZPICTWINDOW__
  26.  
  27.  
  28. #include    "ZScroller.h"
  29.  
  30.  
  31.  
  32. class    ZPictWindow : public ZScroller
  33. {
  34. public:
  35.     PicHandle    thePicture;
  36.  
  37.     ZPictWindow(ZCommander* aBoss, short windID);
  38.     ~ZPictWindow();
  39.     
  40.     virtual void    DrawContent();
  41.     virtual void    OpenFile(OSType fType);
  42.     virtual void    SaveFile();
  43. };
  44.  
  45.  
  46.  
  47.  
  48. #endif